import { Badge } from "@vercel/geistdocs/components/badge"; import type { ReactNode } from "react"; interface HeroProps { badge: string; children: ReactNode; description: string; title: string; } export const Hero = ({ badge, title, description, children }: HeroProps) => (

{badge}

{title}

{description}

{children}
);